names <- c(“Mahi”,”Sourav”,”Azhar”, “Sunny”,”Pataudi”,”Dravid”) Error: unexpected input in "
Title
Question
<span style="display: inline !important; float: none; background-color: rgb(255, 255, 255); color: rgb(37, 37, 37); font-family: sans-serif; font-size: 13.93px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;">names <- c(“Mahi”,”Sourav”,”Azhar”, </span>
“Sunny”,”Pataudi”,”Dravid”)
R Introduction-to-basics-of-R 02-03 min 10-20 sec
Answers:
Please check your syntax. The quotes in your command are not grammatical correct from R programming point of view.
Please try typing this:
names <- c("A", "B", "C", "D")
Login to add comment